home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 757 b | 38 lines | [TEXT/CWIE] |
- // StrangeWindow.h
-
- #ifndef StrangeWindow_h
- #define StrangeWindow_h
-
- #ifndef AbstractWindow_h
- #include "AbstractWindow.h"
- #endif
- #ifndef Assert_h
- #include "Assert.h"
- #endif
-
- class StrangeWindow: public AbstractWindow
- {
- private:
- WindowPtr window;
-
- public:
- StrangeWindow( WindowPtr theWindow )
- : window( theWindow )
- {
- }
-
- virtual void Update();
-
- virtual void Activate();
- virtual void Deactivate();
-
- virtual void ClickContent( const MouseDownEvent& );
- virtual void ClickDrag( const MouseDownEvent& );
- virtual void ClickClose( const MouseDownEvent& );
- virtual void ClickZoomIn( const MouseDownEvent& );
- virtual void ClickZoomOut( const MouseDownEvent& );
- virtual void ClickGrow( const MouseDownEvent& );
- };
-
- #endif
-